projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a73a665
)
fix arg name
author
king6cong
<king6cong@gmail.com>
Wed, 15 Feb 2017 10:10:28 +0000
(18:10 +0800)
committer
king6cong
<king6cong@gmail.com>
Wed, 15 Feb 2017 10:10:28 +0000
(18:10 +0800)
src/cargo/ops/cargo_rustc/mod.rs
patch
|
blob
|
history
diff --git
a/src/cargo/ops/cargo_rustc/mod.rs
b/src/cargo/ops/cargo_rustc/mod.rs
index 3fb4033ed21c64319682afdd0194d7a315431b39..7b7ed1e76ba42701ad311badba71907b66e993e3 100644
(file)
--- a/
src/cargo/ops/cargo_rustc/mod.rs
+++ b/
src/cargo/ops/cargo_rustc/mod.rs
@@
-75,9
+75,9
@@
pub trait Executor: Send + Sync + 'static {
cmd: ProcessBuilder,
_id: &PackageId,
handle_stdout: &mut FnMut(&str) -> CargoResult<()>,
- handle_s
r
derr: &mut FnMut(&str) -> CargoResult<()>)
+ handle_s
t
derr: &mut FnMut(&str) -> CargoResult<()>)
-> Result<(), ProcessError> {
- cmd.exec_with_streaming(handle_stdout, handle_s
r
derr)?;
+ cmd.exec_with_streaming(handle_stdout, handle_s
t
derr)?;
Ok(())
}
}